home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SELF16._M_ < prev    next >
Text File  |  1997-05-22  |  900b  |  38 lines

  1. #
  2. # Microsoft makefile for SELFTEST [Win16]
  3. # Requires WSC16.LIB
  4. #
  5. # To use: "NMAKE SELF16._M_"
  6. #
  7.  
  8. CCFLAGS = -c -AS -G2sw -Oas -Zp
  9.  
  10. selftest.exe: selftest.res selftest.obj selftest.def sioerror.obj wsc16.lib \
  11.            about.obj line.obj paint.obj menu.obj runtest.obj
  12.     link /NOD /NOE  @selftest.rsp,,,libw slibcew wsc16,selftest.def;
  13.     rc selftest.res
  14.  
  15. selftest.res: selftest.rc selftest.h
  16.     rc -r selftest.rc
  17.  
  18. about.obj: about.c about.h
  19.    cl $(CCFLAGS)  about.c
  20.  
  21. line.obj: line.c line.h wsc.h
  22.     cl $(CCFLAGS)  line.c
  23.  
  24. menu.obj: menu.c menu.h wsc.h
  25.     cl $(CCFLAGS)  menu.c
  26.  
  27. paint.obj: paint.c paint.h wsc.h
  28.     cl $(CCFLAGS)  paint.c
  29.  
  30. selftest.obj: selftest.c selftest.h wsc.h
  31.    cl $(CCFLAGS)  selftest.c
  32.  
  33. sioerror.obj: sioerror.c sioerror.h wsc.h
  34.    cl $(CCFLAGS)  sioerror.c
  35.  
  36. runtest.obj: runtest.c runtest.h wsc.h
  37.    cl $(CCFLAGS)  runtest.c
  38.